10L + Multi-Order N-gram Backoff (0.9123 BPB)#802
Open
Bortlesboat wants to merge 4 commits intoopenai:mainfrom
Open
10L + Multi-Order N-gram Backoff (0.9123 BPB)#802Bortlesboat wants to merge 4 commits intoopenai:mainfrom
Bortlesboat wants to merge 4 commits intoopenai:mainfrom
Conversation
Explores stacking eval-time techniques (neural cache, LoRA TTT) and quantization-aware training on top of the openai#1 recipe. QAT has an export mismatch bug resulting in high quantization penalty — submitting as non-record to document the approach for iteration.
Non-record submission. 10 layers, d=512, GQA 8H/4KV, mixed int5/int6 quantization + zstd-22. BigramHash(4096, dim=128), SmearGate, SWA(0.4). Mean of 3 seeds: 1.1507 +/- 0.0006 BPB. All artifacts under 16MB.
10L d=512, GQA 8H/4KV, LeakyReLU(0.5)^2, Partial RoPE, LN Scale, XSA last 4, Value Residual, EMA(0.997). Mixed int5/int6 + zstd-22. Eval: multi-order hashed n-gram backoff (orders 2-7) with entropy- adaptive alpha. Mean of 3 seeds: 0.9123 +/- 0.0003 BPB.
Renamed to reflect actual technique (n-gram backoff + entropy alpha). Removed old 1.1507 BPB seed logs. Added explicit compliance/legality section per competition conventions.
bigbag
pushed a commit
to bigbag/parameter-golf
that referenced
this pull request
Mar 26, 2026
Single change from PR openai#802: MATRIX_LR=0.03 (was 0.02). Discovered through systematic screening (74 experiments, steps 10-12). - 10L, 512d, GQA 8/4, LeakyReLU(0.5)², BigramHash 4096 - Multi-order n-gram backoff eval cache (orders 2-7) - Entropy-adaptive alpha mixing (score-first, legal) - 8xH100 SXM, 600s training, 138s eval - Artifact: 15.32 MB Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This was referenced Mar 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Record submission
val_bpb: 0.9123 (mean of 3 seeds, post int5/int6+zstd quantization roundtrip)
Architecture
Eval: Multi-Order N-gram Backoff + Entropy-Adaptive Alpha
alpha = 0.05 + 0.55 * sigmoid(2 * (H - 4.0))Timing (8xH100 SXM)
Based on